@charset "UTF-8";
.navigation {
  height: 50px;
  background:none;
  margin-top: 10px;
}

.brand {
  position: absolute;
  padding-left: 1px;
  float: left;
  line-height: 70px;
  text-transform: uppercase;
  font-size: 1.7em;
  font-family: 'Arial';
}
.brand a,
.brand a:visited {
  color:#000000;
  text-decoration: none;
}

.nav-container {
  max-width: 90%;
  margin: 0 auto;
}

nav {
  float: right;
  font-family: 'Century Gothic', 'Arial';
  font-size: 11.5px;
  letter-spacing: 0.3px;
}
nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
nav ul li {
  float: left;
  position: relative; 
  cursor: pointer;
}
nav ul li a,
nav ul li a:visited {
  display: block;
  padding: 0 10px;
  line-height: 70px;
  background: none;
  color:#000000;
  text-decoration: none; 
}
nav ul li a:hover,
nav ul li a:visited:hover {
  background: none;
  color:#3A3A3A;
}
nav ul li a:not(:only-child):after,
nav ul li a:visited:not(:only-child):after {
  padding-left: 4px;
  content: '▾';
}
nav ul li ul li {
  min-width: 160px;
}
nav ul li ul li a {
  padding: 15px;
  line-height: 0px;
  font-family: 'Arial';
}

nav ul .nav-dropdown {
  background: white;
}

.nav-dropdown {
  position:absolute;
  display: none;
  z-index: 1000;
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.15);
}

/* Mobile navigation */
.nav-mobile {
  display: none;
  position: absolute;
  top: 0;
  right: 10px;
  background:none;
  height: 70px;
  width: 70px;
}

@media only screen and (max-width: 990px) {
  .nav-mobile {
    display: block;
  }

  nav {
    width: 100%;
    padding: 70px 0 15px;
  }
  nav ul {
    display: none;
	background: #EBEBEB;
  }
  nav ul li {
    float: none;
  }
  nav ul li a {
    padding: 15px;
    line-height: 10px;
	margin-left: 20px;
  }
  nav ul li ul li a {
    padding-left: 30px;
	line-height: 15px;
  }

  .nav-dropdown {
    position:static;
  }
	
  .brand {
    padding-left: 7px;
	font-size: 1.5em;
	}
}
@media screen and (min-width: 991px) {
  .nav-list {
    display: block !important;
  }
}

#nav-toggle {
  position: absolute;
  left: 35px;
  top:33px;
  cursor: pointer;
  padding: 10px 35px 16px 0px;	
  opacity: 1;
}
#nav-toggle span,
#nav-toggle span:before,
#nav-toggle span:after {
  cursor: pointer;
  border-radius: 1px;
  height: 2px;
  width: 20px;
  background: #000000;
  position: absolute;
  display: block;
  content: '';
  transition: all 300ms ease-in-out;
  
}
#nav-toggle span:before {
  top: -5px;
}
#nav-toggle span:after {
  bottom: -5px;
}
#nav-toggle.active span {
  background-color: transparent;
}
#nav-toggle.active span:before, #nav-toggle.active span:after {
  top: 0;
}
#nav-toggle.active span:before {
  transform: rotate(45deg);
}
#nav-toggle.active span:after {
  transform: rotate(-45deg);
}

article {
  max-width: 1000px;
  margin: 0 auto;
  padding: 10px;
}

.social{
	display: flex;
	justify-content: flex-end;
	color: #fff; 
	margin: 0 auto;
	max-width: 90%;
	margin-top: 0;
}

.inner-social .fab{
	margin: 0 7px;
	font-size: 15px;
	cursor: pointer;
	transition: all 0.5s ease;
	color: #000000; 
}

.inner-social .fa{
	margin: 0 7px;
	font-size: 15px;
	cursor: pointer;
	transition: all 0.5s ease;
	color: #000000; 
}
.gobackbtn{
	background-color: #fff;
	font-size: 21px;
	cursor: pointer;
	border: 2px solid #F6F6F6;
	padding: 25px 45px;
	outline: none;
	color: #000000;
	font-weight: bold;
}
.gobackbtn:hover{
	background-color: #F6F6F6;
}
@media only screen and (max-width: 991px){
	.gobackbtn{
	padding: 15px 25px;	
	font-size: 17px;
	}
}
	  